home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / TODO.PAK / MAKEFILE next >
Text File  |  1997-05-06  |  1KB  |  28 lines

  1. #--------------------------------------------------------------------------#
  2. #                                                                          #
  3. #   MAKEFILE for Todo Example                                              #
  4. #                                                                          #
  5. #   Copyright (c) Borland International 1993                               #
  6. #   All Rights Reserved                                                    #
  7. #                                                                          #
  8. #   Usage:                                                                 #
  9. #                                                                          #
  10. #       make                                                               #
  11. #                                                                          #
  12. #--------------------------------------------------------------------------#
  13.  
  14. EXE     = todo
  15. MODELS  = mldft
  16. SYSTEMS = WIN32 WIN16
  17. RESEXE  = todowin.res
  18. OBJEXE  = todowin.obj todolist.obj tododlgs.obj
  19.  
  20. # Building the FLAT version of this sample, requires GUI
  21. #
  22. !if "$(MODEL)" == "f"
  23. SYSTEM=WIN32
  24. !endif
  25.  
  26. !include $(BCEXAMPLEDIR)\bidsmake.gen
  27.  
  28.